After navigating to PhpMyadmin page, click on the "Users" Tab.
Next, Click on the "Add user" option
Now, Enter the fields as shown in the below Image. Create an user, assign a password to it and create a database with the same name as user.
Click on Databases Tab to Navigate to the List of Databases page.
Click on the database name which you have create earlier.
After choosing the Database, click on the privileges tab to open the privileges settings as shown in the below image.
Now grant all privileges (Administration) to the user for the database as shown in the below Image.
After Granting all privileges to the user, now import the database to the Mysql server as shown in the below image
Click on "Choose file" option to browse for the Database file from the source code(orangescrum-master) which you have downloaded earlier and click on "Go"
Now, you can see the Table Structure under the Database.
Now, you have to configure the Application with the Apache webserver. Refer the below steps.
Step 5
Navigate to the XAMPP folder where you have installed the XAMPP software or you may call the installation folder.
Paste the source code folder (orangescrum-master) of Orangescrum folder which you have downloaded earlier and paste it inside the "htdocs" folder as shown in the below image.
Now, navigate to the orangescrum-master\app\Config directory.
Open the database.php file in an editor and change the fields
'host' => 'localhost'
'login' => 'root'
'password' => ''
'database' => ''
To
'host' => 'localhost' ←----------------------- The host name should remain Localhost.
'login' => 'orangescrum' ←----------------- Database username which you have created earlier
'password' => '*****' ←--------------------Enter the password which you have assigned to the user earlier
'database' => 'orangescrum'←-----------------------Enter the Database name which you created earlier.
Now browse the application by the URl: "http://yourIPaddress/orangescrum-master/"
Step 6
General Configuration management:
MySQL:
If STRICT mode is On, turn it Off.
Create a new MySQL database named " orangescrum " ('utf8_unicode_ci' collation).
PHP:
Enable curl in php.ini
Change the ' post_max_size ' and ` upload_max_filesize ` to 200Mb in php.ini
Make sure that, the .htaccess is working in your server.